home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0697.zip / WIESMAN.ZIP / CUSTCTRL.CPP < prev    next >
C/C++ Source or Header  |  1997-01-20  |  438b  |  21 lines

  1. // CustCtrl.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CustCtrl.h"
  5.  
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11.  
  12.  
  13. BOOL CCustomControlTerm::m_bInitialized = FALSE;
  14. static CCustomControlTerm cct;
  15.  
  16. LRESULT CALLBACK CustomControlWndProc(HWND hwnd, UINT msg, 
  17.                             WPARAM wParam, LPARAM lParam)
  18. {
  19.    return ::DefWindowProc(hwnd, msg, wParam, lParam);
  20. }
  21.